home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / cgazv4n2.zip / CPP.ZIP / MAKEFILE < prev   
Text File  |  1989-10-27  |  735b  |  27 lines

  1. # for compact: small code, large data
  2. # Compact model needed because heap can be exhausted with
  3. # the small model (32K of heap).
  4. CPP = ztc -mc
  5.  
  6. .cxx.exe:
  7.         $(CPP) $*.cxx
  8. .cxx.obj:
  9.         $(CPP) -c $*.cxx
  10. all :    lltest.exe ldir.exe du.exe
  11.  
  12. ldir.exe : ldir.obj filelist.obj llist.obj
  13.         $(CPP) $**
  14. #    copy ldir.exe \\
  15. du.exe : du.obj filelist.obj llist.obj
  16.         $(CPP) $**
  17. #    copy du.exe \\
  18. lltest.exe : lltest.obj llist.obj
  19.         $(CPP) $**
  20. freshen :
  21.     pkzip -f dirlist.zip
  22.  
  23. llist.obj :    llist.hxx    llist.cxx
  24. lltest.obj :   llist.hxx    lltest.cxx
  25. ldir.obj :     filelist.hxx llist.hxx  ldir.cxx
  26. du.obj :       filelist.hxx llist.hxx  du.cxx
  27. filelist.obj : filelist.hxx llist.hxx  filelist.cxx